home *** CD-ROM | disk | FTP | other *** search
- # Script for CompuServe login
- #
- # This RoboDUN script will log in to CompuServe and
- # establish a PPP connection. It has been tested
- # successfully with RoboDUN 0.61 at 28.8Kbaud.
- #
- # Bring up this script with an editor such as Notepad
- # and then cut and paste the contents into RoboDUN's
- # script editor window.
- #
- # Replace "your-user-ID" and "your-password" with your
- # actual CompuServe user ID and password.
- #
- # The primary and secondary DNS addresses for CompuServe
- # are 149.174.211.5 and 149.174.213.5, respectively.
- #
- # See the RoboDUN documentation and the documentation
- # for setting up dialup connections under Windows 95
- # for related implementation details. I.e., RTFM!
- #
- # V1.0/30 Jul 95
- # William K. Walker
- # North Valley Digital
- # P.O. Box 1941
- # Kalispell MT 59903-1941
- # +1 (406) 257-2306 (voice, voice mail)
- # +1 (406) 752-3201 (fax)
- # 71066,24
- # wkwalker@netrix.net (finger for PGP public key)
-
- # Send a control-C to trigger the User ID prompt
- Send "<ctrlc>"
-
- # Wait for the user ID prompt and then send the user ID and
- # the command to trigger the PPP protocol. (Note that we are
- # really waiting for "ID:", but CIS uses even parity at login,
- # so we get some funny looking characters.)
- WaitFor "╔D:", 10
- Send "your-user-ID/GO:PPPCONNECT<cr>"
-
- # Wait a couple of seconds and jam out the password.
- Pause 2
- Send "your-password<cr>"
-
- Done
-